Function: isPath(string) Description: Checks if a string consists of a relative or absolute server path. Returns: True if yes, False otherwise. Note: The isPath() function does not support chaining. Example: // Check if a string consists of a server path. var isPath = $A.isPath("This is a test."); // Returns false var isPath = $A.isPath("./files/dialog.htm#login-id"); // Returns true